home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 112 / EnigmaAmiga112CD.iso / dalla rivista / awnpipe / awnp / awnp-docs / listbrowser.doc < prev    next >
Text File  |  2000-05-17  |  6KB  |  186 lines

  1. ListBrowser gadget event
  2. -------------------------
  3.  
  4. 'gadget GID event_source event_column NodeGID [NodeGID [NodeGID ...]]'
  5.  
  6. event_source&1 means normal selection of node.
  7.  
  8. event_source&2 means this nodes children have been hidden.
  9.  
  10. event_source&4 means this nodes children are now shown.
  11.  
  12. event_source&8 means node has been edited.
  13.  
  14. event_source&16 means double click on node.
  15.  
  16. event_column is the column the mouse was over when the node was clicked.
  17.  
  18. ListBrowser gadget parameters.
  19. -------------------------
  20.  
  21. font=GID
  22.  
  23. This sets the font for the gadget. The GID points to an ALREADY defined text attribute.
  24.  
  25. readonly (ro)
  26.  
  27.  This list browser entries can not be edited.
  28.  
  29. disable=number (dis=)
  30.  
  31.  The gadget is enabled if number = 0 , disabled if number != 0. Defaults to enabled.
  32.  
  33. selected=number (s=)
  34.  
  35.   Set which choice is selected when the window opens. Selections start at 0 . This defaults to none. CAREFUL modify uses the listnode GID, this parameter uses the ordinal position of the node.
  36.  
  37. ListbrowserLabels="text0|text1|text..."  (lbl=)
  38.  
  39.  Set the column labels for the list. Defaults to 1 unlabeled column.  NO MORE THAN 20 COLUMNS can be defined !
  40.  
  41. bnparent (bnp)
  42.  
  43.  Allow parenting in this listbrowser.
  44.  
  45. showtitles (st)
  46.  
  47.  Show the column tiles of this listbrowser.
  48.  
  49. vertical (v)
  50.  
  51.  Use vertical separators in the listbrowser.
  52.  
  53. hori (h)
  54.  
  55.  Use horizontal separators in the listbrowser.
  56.  
  57. arrows   (a)
  58.  
  59.  Show arrows for horizontal scrolling and make this a virtual width list.
  60.  
  61. multi  (m)
  62.  
  63.  Switch to allow multi selection in the list. Multi select by holding the shift key.
  64.  
  65. minwidth=number (minw=)
  66.  
  67.  Set the minimum width for this gadget
  68.  
  69. minheight=number (minh=)
  70.  
  71.  Set the minimum height for this gadget
  72.  
  73. weightedwidth=number (weiw=)
  74.  
  75.  Set the weighted width for this gadget
  76.  
  77. weightedheight=number (weih=)
  78.  
  79.  Set the weighted height for this gadget
  80.  
  81. nominalsize (noms)
  82.  
  83.  Set this gadget to its nominal size.
  84.  
  85. SPECIAL FUNCTION
  86. -----------------
  87.  
  88.  Using sort on a line BY ITSELF during gadget definitions will cause the last defined listbrowser to be sorted. This is to allow a list browser to be sorted before the gui window is opened. (the modify sort command sorts the listbrowser after the window is opened.)
  89.  
  90. sort=COLUMN#
  91.  
  92. (optional) sort=COLUMN# defn=COLUMN#
  93.  
  94.  Sort list browser based on the column number, if the sort entries are the save a secondary sort based on the defaultnumber column is done. Specifying a secondary column to sort by is optional. Remember columns start at 0. You MUST NOT specify an invalid column number.
  95.  
  96. Definition Reply
  97. -----------------
  98.  
  99.  When the gadget creation is successful the pipe replies with
  100.  
  101. 'ok GID'
  102.  
  103. ListBrowser gadget modify parameters.
  104. -------------------------
  105. down
  106.  
  107. Select the next node in the list.
  108.  
  109. up
  110.  
  111. Select the previous node in the list.
  112.  
  113. addnode (addn)
  114.  
  115.  Add a new node to this ListBrowser.
  116.  
  117.  You should keep this modify command a s simple as possible, only use keywords that specifically deal with the creation of the node. (tar gt bnp defn sc )
  118.  
  119.  Put additional changes like select= or disable = in a separate modify line. Some keywords like refresh, tick, disable, sort, and others could cause extra 'oks' to be in the response line.
  120.  
  121.  Keep it simple and this modify command is responded to with 'ok GID' where GID is the ID of the browser node.
  122.  
  123. GadgetText="[^|¶]text0|[^|¶]text1|[^|¶]text..." (gt=)
  124.  
  125.  Set the text(s) for the added node. This parameter MUST be given if you are using 'addnode' . YOU MUST NOT GIVE MORE TEXTS THAN THE AMOUNT OF COLUMNS IN THE LISTBROWSER. A leading '^' makes the text editable. A leading '¶' (ALT p) uses the last defined image for the column rather than text. Note that images used in browsernodes can not be more than 255 pixels high. (hint: split larger images and use more than one node)
  126.  
  127. defnumber=number  (defn=)
  128.  
  129.  Set the Generation of this browser node.
  130.  
  131. target=GID  (tar=)
  132.  
  133.  If GID=0 add the new node at head of list. If GID=-1 add the new node at tail of list. Else add the new node immediately after the node specified by GID.
  134.  
  135. browsernodeparent  (bnp)
  136.  
  137.  The new browser node has children.
  138.  
  139. List=number
  140.  
  141.  If number=0 detach the node list from the listbrowser. If number!=0 then reattaches the node list to the listbrowser.
  142.  
  143. removenode (remn)
  144.  
  145.  Remove ALL browsernodes from this ListBrowser.
  146.  
  147. readonly (ro)
  148.  
  149.  This list browser entries can not be edited.
  150.  
  151. disable=number (dis=)
  152.  
  153.  The gadget is enabled if number = 0 , disabled if number != 0.
  154.  
  155. scroll=GID (scr=)
  156.  
  157.  Scroll the listbrowser so the node specified by GID is at the top.
  158.  
  159. selected=num (s=)
  160.  
  161.   For multi select lists
  162.  
  163.  Setting selected=0 sets all nodes as unselected. Setting selected=-1 sets all nodes as selected.  You may set the nodes individually instead of using this command. See browsernode modify commands.
  164.  
  165. selected=node_GID (s=)
  166.  
  167.   For single select lists
  168.  
  169.  Set the selected node. Selected=0 sets all nodes as unselected, else the specified node is selected. CAREFUL modify uses the listnode GID not the ordinal position. This is different then in the listbrowser definition.
  170.  
  171. sort=COLUMN#
  172.  
  173. (optional) sort=COLUMN# defn=COLUMN#
  174.  
  175.  Sort list browser based on the column number, if the sort entries are the save a secondary sort based on the defaultnumber column is done. Specifying a secondary column to sort by is optional. Remember columns start at 0. You MUST NOT specify an invalid column number.
  176.  
  177. autofit
  178.  
  179.  This keyword forces the listbrowser to evaluate its size. It is only needed when a listbrowser uses a font other than the screen default font AND no new browser nodes are added after the GUI window is opened.
  180.  
  181. order
  182.  
  183.  Read the order of nodes in the listbrowser. This does not return the normal 'ok' instead it returns a sequence of GID's in the same order as the nodes in the listbrowser. THIS COMMAND SHOULD NOT BE USED WITH ANY OTHER MODIFY COMMANDS ON THE SAME LINE.
  184.  
  185.  
  186.